home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
dev
/
e
/
AEPD09.lha
/
EPD09
/
Amiga_E-Programme
/
ESEE
/
InstallESEE
< prev
next >
Wrap
Text File
|
1994-08-18
|
4KB
|
121 lines
; ESEE 1.0 Installation Script for AmigaDOS.
; $VER InstallESEE 1.0b (9.12.93)
Echo ""
Echo "
E Source Edit Environment (ESEE) 1.0 Installation Script 1.0b"
Echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"
Assign EXISTS NAME "GOLDED:" >NIL:
If NOT WARN
If EXISTS "LIBS:reqtools.library"
If EXISTS "LIBS:amigaguide.library"
Echo "Be sure you have read the guide about ESEE requirements."
Ask PROMPT "Shall I proceed installation procedure? (
Y
es/
N
o)"
If WARN
Echo "Proceeding installation..."
Echo ""
; GoldED prefs dir
; ~~~~~~~~~~~~~~~~
If NOT EXISTS "ENVARC:GoldED"
Echo "Making *"ENVARC:GoldED*" directory..."
MakeDir "ENVARC:GoldED"
EndIf
; ESEE prefs to ENVARC:
; ~~~~~~~~~~~~~~~~~~~~~
Ask PROMPT "Must ESEE become the default configuration for GoldED? (
Y
es/
N
o)"
If WARN
If EXISTS ENVARC:GoldED/GoldED.prefs
Echo "Moving *"GoldED.prefs*" to *"YourOldGoldED.prefs*"..."
Copy FROM "ENVARC:GoldED/GoldED.prefs" TO "ENVARC:GoldED/YourOldGoldED.prefs" QUIET
Delete "ENVARC:GoldED/GoldED.prefs" QUIET
EndIf
Echo "Copying the ESEE configuration to *"ENVARC:GoldED/GoldED.prefs*"..."
Copy FROM "Env/GoldED/ESEE.prefs" TO "ENVARC:GoldED/GoldED.prefs" QUIET
Else
If EXISTS ENVARC:GoldED/ESEE.prefs
Echo "Moving *"ESEE.prefs*" to *"YourOldESEE.prefs*"..."
Copy FROM "ENVARC:GoldED/ESEE.prefs" TO "ENVARC:GoldED/YourOldESEE.prefs" >NIL:
Delete "ENVARC:GoldED/ESEE.prefs" QUIET
EndIf
Echo "Copying the ESEE configuration to *"ENVARC:GoldED/ESEE.prefs*"..."
Copy FROM "Env/GoldED/ESEE.prefs" TO "ENVARC:GoldED/ESEE.prefs" QUIET
EndIf
; ESEE prefs to ENV:
; ~~~~~~~~~~~~~~~~~~
If NOT EXISTS "ENV:GoldED"
Echo "Making *"ENV:GoldED*" directory..."
MakeDir "ENV:GoldED"
EndIf
Echo "Copying the GoldED environment settings to *"ENV:GoldED/*"..."
Copy FROM "ENVARC:GoldED" TO "ENV:GoldED" ALL QUIET
; Online Guide
; ~~~~~~~~~~~~
Echo "Copying the ESEE online guide to *"GoldED:ESEE.guide*"..."
Copy FROM "ESEE.guide#?" TO "GOLDED:" ALL QUIET
; ARexx Scripts
; ~~~~~~~~~~~~~
If NOT EXISTS GOLDED:ARexx
Echo "Making *"GoldED:ARexx*" directory..."
MakeDir "GOLDED:ARexx"
EndIf
Echo "Copying ARexx scripts to *"GoldED:Parsers/*"..."
Copy FROM "GoldED/ARexx" TO "GOLDED:ARexx" ALL QUIET
; Assembled Parsers
; ~~~~~~~~~~~~~~~~~
If NOT EXISTS GOLDED:Parsers
Echo "Making *"GoldED:Parsers*" directory..."
MakeDir "GOLDED:Parsers"
EndIf
Echo "Copying the parsers to *"GoldED:Parsers/*"..."
Copy FROM "GoldED/Parsers" TO "GOLDED:Parsers" ALL QUIET
; References
; ~~~~~~~~~~
If NOT EXISTS GOLDED:References
Echo "Making *"GoldED:References*" directory..."
MakeDir "GOLDED:References"
EndIf
Echo "Copying the reference file to *"GoldED:References/*"..."
Copy FROM "GoldED/References" TO "GOLDED:References" ALL QUIET
Echo ""
Echo "All done. Installation completed."
Echo ""
Else
Echo "Installation aborted..."
Echo ""
EndIf
Else
Echo "ESEEs online help feature needs the AmigaGuide library. First install"
Echo "AmigaGuide onto your system. Then run this installation again."
Echo ""
EndIf
Else
Echo "It seems that GoldED is properly installed. However, GoldED needs the"
Echo "ReqTools library. First install Reqtools onto your system. Then run"
Echo "this installation again."
Echo ""
EndIf
Else
Echo "It seems that GoldED is not properly installed, as the *"GoldED:*" assign is"
Echo "not present. Please install GoldED or assign *"GoldED:*" to the directory"
Echo "where it is located. Then run this installation again."
Echo ""
EndIf